home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 2000 November: Tool Chest / Dev.CD Nov 00 TC Disk 1.toast / Sample Code / Games / NetSprocketTest / makefile < prev    next >
Encoding:
Makefile  |  2000-09-28  |  2.3 KB  |  99 lines  |  [TEXT/MPS ]

  1. #
  2. #    File:        makefile
  3. #
  4. #    Contains:    xxx put contents here xxx
  5. #
  6. #    Version:    xxx put version here xxx
  7. #
  8. #    Copyright:    © 1998 by Apple Computer, Inc., all rights reserved.
  9. #
  10. #    File Ownership:
  11. #
  12. #        DRI:                xxx put dri here xxx
  13. #
  14. #        Other Contact:        xxx put other contact here xxx
  15. #
  16. #        Technology:            xxx put technology here xxx
  17. #
  18. #    Writers:
  19. #
  20. #        (cjd)    Chris De Salvo
  21. #
  22. #    Change History (most recent first):
  23. #
  24. #       <SP1>    10/19/98    cjd        first checked in
  25. #
  26.  
  27. #   File:       makefile
  28. #   Target:     NewNSpTest
  29. #   Sources:    aevt.c
  30. #               events.c
  31. #               init.c
  32. #               main.c
  33. #               NetStuff.cp
  34. #               windows.c
  35. #   Created:    Thursday, October 1, 1998 12:11:22 PM
  36.  
  37.  
  38. MAKEFILE     = makefile
  39. •MondoBuild• = {MAKEFILE}  # Make blank to avoid rebuilds when makefile is modified
  40. Includes     =
  41. Sym•PPC      = 
  42. ObjDir•PPC   = :Objects:
  43.  
  44. PPCCOptions  = {Includes} {Sym•PPC} 
  45. PPCCPlusOptions = {Includes} {Sym•PPC} 
  46.  
  47. Objects•PPC  = ∂
  48.         "{ObjDir•PPC}aevt.c.x" ∂
  49.         "{ObjDir•PPC}events.c.x" ∂
  50.         "{ObjDir•PPC}init.c.x" ∂
  51.         "{ObjDir•PPC}main.c.x" ∂
  52.         "{ObjDir•PPC}NetStuff.cp.x" ∂
  53.         "{ObjDir•PPC}windows.c.x"
  54.  
  55. # default directory rule
  56. {ObjDir•PPC}    ƒ    :
  57.  
  58. NewNSpTest ƒƒ {•MondoBuild•} {Objects•PPC}
  59.     PPCLink ∂
  60.         -o {Targ} {Sym•PPC} ∂
  61.         {Objects•PPC} ∂
  62.         -t 'APPL' ∂
  63.         -c '????' ∂
  64.         "{PPCLibraries}PPCSIOW.o" ∂
  65.         "{SharedLibraries}InterfaceLib" ∂
  66.         "{SharedLibraries}StdCLib" ∂
  67.         "{SharedLibraries}MathLib" ∂
  68.         "{SharedLibraries}NetSprocketLib" ∂
  69.         "{PPCLibraries}PPCCRuntime.o" ∂
  70.         "{PPCLibraries}PPCToolLibs.o" ∂
  71.         "{PPCLibraries}MrCPlusLib.o" ∂
  72.         "{PPCLibraries}MrCIOStreams.o" ∂
  73.         -weaklib "NetSprocketLib"
  74.  
  75. NewNSpTest ƒƒ "{RIncludes}"SIOW.r
  76.     Rez -a "{RIncludes}"SIOW.r -o {Targ}
  77.  
  78. NewNSpTest ƒƒ {•MondoBuild•} GameSample.π.rsrc
  79.     echo "INCLUDE ∂"GameSample.π.rsrc∂" NOT 'ckid';∂n" | rez -a -o {Targ}
  80.  
  81. "{ObjDir•PPC}aevt.c.x" ƒ {•MondoBuild•} aevt.c
  82.     {PPCC} aevt.c -o {Targ} {PPCCOptions}
  83.  
  84. "{ObjDir•PPC}events.c.x" ƒ {•MondoBuild•} events.c
  85.     {PPCC} events.c -o {Targ} {PPCCOptions}
  86.  
  87. "{ObjDir•PPC}init.c.x" ƒ {•MondoBuild•} init.c
  88.     {PPCC} init.c -o {Targ} {PPCCOptions}
  89.  
  90. "{ObjDir•PPC}main.c.x" ƒ {•MondoBuild•} main.c
  91.     {PPCC} main.c -o {Targ} {PPCCOptions}
  92.  
  93. "{ObjDir•PPC}NetStuff.cp.x" ƒ {•MondoBuild•} NetStuff.cp
  94.     {PPCCPlus} NetStuff.cp -o {Targ} {PPCCPlusOptions}
  95.  
  96. "{ObjDir•PPC}windows.c.x" ƒ {•MondoBuild•} windows.c
  97.     {PPCC} windows.c -o {Targ} {PPCCOptions}
  98.  
  99.